@charset "utf-8";
/*        /* ------SEARCH BOX ----------      */


#searchForm {
    width: 100%;
    max-width: 320px;
    height: 44px;
    margin: 12px auto 0 auto;
    left: 0;
    top: 0;
    transform: none;
    border-radius: 22px;
    border: 2px solid #F0EBA4;
    padding: 0 8px;
    display: flex;
    align-items: center;
    position: relative;
    background: #3ab49d;
    box-sizing: border-box;
    transition: all 0.3s;
}

#searchForm input {
    position: relative;
    width: 100%;
    height: 36px;
    line-height: 36px;
    outline: 0;
    border: none;
    display: block;
    font-size: 1em;
    border-radius: 18px;
    padding: 0 12px;
    background: #fff;
    margin-right: 8px;
    -webkit-appearance: none;
    appearance: none;
}

.fa {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: #3ab49d;
    font-size: 1.2em;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    margin-left: 4px;
}

.fa:before {
    font-family: "Font Awesome 5 Free";
    content: "\f002";
    font-weight: 900;
}

#searchForm:focus-within .fa:before {
    content: "\f061";
}

#searchForm:focus-within .fa {
    background: #2e8c7c;
    color: #fff;
}

/* Responsive adjustments for larger screens */
@media (min-width: 460px) {
    #searchForm {
        max-width: 290px;
        height: 44px;
        margin-top: 24px;
        padding: 0 16px;
    }
}

@media (min-width: 768px) {
    #searchForm {
        max-width: 420px;
        height: 48px;
        margin-top: 32px;
        padding: 0 20px;
    }
    #searchForm input {
        height: 40px;
        font-size: 1.1em;
    }
    .fa {
        width: 40px;
        height: 40px;
        font-size: 1.3em;
    }
}

/*        /* ------SEARCH BOX ----------      */


#searchForm {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: all 1s;
    width: 50px;
    height: 50px;
    background: #3ab49d;
    box-sizing: border-box;
    border-radius: 25px;
    border: 4px solid #F0EBA4;
    padding-right: 12px;
    padding-left: 12px;
    margin-top: 19px;
    margin-bottom: -13px;
}
	

}

/* special fix for firefox only, the positioning of the search element is too high */
@-moz-document url-prefix() {
    #searchForm {
        margin-top: 5px;
    }
}

@-moz-document url-prefix() {
    @media screen and (min-width:600px) {
        #searchForm {
            margin-top: 32px;
            margin-bottom: -25px;
        }
    }
}



/* fix to style button on mobile */
textarea,
input.text,
input[type="text"],
input[type="button"],
input[type="submit"],
.input-checkbox {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 4px;
}

 
 
/* special fix for firefox only, the positioning of the search element is too high */
@-moz-document url-prefix() {
	#searchForm {
		margin-top: 5px;
	}
}
@-moz-document url-prefix() {
	@media screen and (min-width: 600px) {
		#searchForm {
			margin-top: 32px;
			margin-bottom: -25px;
		}
	}
}
/* fix for unwanted movement. We load it here on the body and when the page is loaded we remove the class of preload from the body tag with some JS */
.preload * {
	-webkit-transition: none !important;
	-moz-transition: none !important;
	-ms-transition: none !important;
	-o-transition: none !important;
	transition: none !important;
}
/* for unwanted movement on page resize */
.resize-animation-stopper * {
	animation: none !important;
	transition: none !important;
}
 /*small images for new products on single product page */
 .small-img-group{
    display: flex;
    justify-content: space-between;
 }
 
 .small-img-col{
    flex-basis: 24%;
    cursor: pointer;
}

.single-product input {
    width: 50px;
    height: 40px;
    padding-left: 10px;
    font-size: 16px;
    margin-right: 10px;
}

.single-product input:focus {
    outline: none;
}

.newproduct{
    flex-basis: 20%;
    cursor: pointer;
    margin-bottom: 2rem;
}

.newproduct img{
    transition: 0.3s all;
}

.newproduct:hover img{
    opacity: 0.7;
}